home *** CD-ROM | disk | FTP | other *** search
- /*//////////////////////////////////////////////////////////////////////
- Filename: wsn-devices.js
- Company Name: Computer Associates International, Inc.
- Legal Copyright: Copyright (c) Computer Associates International, Inc.
- Author:
- Product: Tiny Firewall
- Description: device functions
- ///////////////////////////////////////////////////////////////////////*/
-
- var sdparser = window.external.ServerParser(XM_SBX);
- var arparser = window.external.ServerParser(XM_APPREP);
- var dhtmlctrl = window.external;
-
- function getXmlSdbFilePath()
- {
- if (sdparser)
- {
- // paths to source files
- return sdparser.filePath;
- } else
- return "";
-
- }
-
- function changeRules(chkb)
- {
- var idsString = chkb.rules;
- var prevent = chkb.checked;
-
- if (idsString && idsString != "" && sdparser)
- { // change existing rule
- var ids = idsString.split("|");
- for (var i = 0; i < ids.length; i++)
- {
- var adl = sdparser.RuleList.Get(ids[i]).AccessDescriptorList;
- adl.Clear();
- var ad = adl.CreateAccessDescriptor();
- ad.AccessType = 0x0000001F;
-
- if (prevent)
- {
- // Prevent
-
- // USB and Firewire storage devices have omitted AT_DEVICE_WRITE access in order to avoid "Failed write" messages
- if ((sdparser.RuleList.Get(ids[i]).Path == "Disk\\Link\\*\\usbstor*" || sdparser.RuleList.Get(ids[i]).Path == "Disk\\Link\\*\\Sbp2*")
- && sdparser.RuleList.Get(ids[i]).Account == RA_SYSTEM)
- {
- var ad2 = adl.CreateAccessDescriptor();
- ad2.AccessType = AT_DEVICE_OPEN;
- ad2.AccessResult = 0x0000;
- ad2.AuditLevel = document.all["SelAuditLevel"].value == "monitor" ? 0x0001 : 0x0000;
- adl.Insert(ad2);
-
- var ad3 = adl.CreateAccessDescriptor();
- ad3.AccessType = AT_DEVICE_READ;
- ad3.AccessResult = 0x0000;
- ad3.AuditLevel = document.all["SelAuditLevel"].value == "monitor" ? 0x0001 : 0x0000;
- adl.Insert(ad3);
-
- ad.AccessType = AT_DEVICE_IOCTL;
-
- // ignore AT_DEVICE_WRITE
- }
-
- ad.AccessResult = 0x0000;
-
- if (document.all["SelAuditLevel"].value == "monitor")
- {
- // Monitor
- ad.AuditLevel = 0x0001;
- }
- else
- {
- // Ignore
- ad.AuditLevel = 0x0000;
- }
- }
- else
- {
- // Allow / Ignore
- ad.AccessResult = 0x0001;
- ad.AuditLevel = 0x0000;
- }
- adl.Insert(ad);
- }
- }
- else
- { // create new rule
- /*var maxId = maxRuleID.value;
- if (maxId == "")
- maxId = 0;*/
- var rules = "";
- var strRule = "";
-
- if (chkb.objects)
- {
- var objs = chkb.objects.split("|");
- for (var i = 0; i < objs.length; i++)
- {
- strRule = addRule(objs[i], 0, prevent);
- rules += strRule + "|";
- if ((chkb.account) && (chkb.account == "system"))
- {
- strRule = addRule(objs[i], 1, prevent);
- rules += strRule + "|";
- }
- }
- }
-
- if (rules.substring(rules.length-1) == "|")
- rules = rules.substring(0, rules.length-1);
-
- chkb.rules = rules;
- }
-
- saveWSChanges( false, false )
- //external.Save();
- }
-
- function addRule(object, account, prevent)
- {
- var newRule = sdparser.RuleList.CreateRule();
- var adl = newRule.AccessDescriptorList;
-
- //newRule.RuleIdString = id;
- newRule.Priority = 0;
- newRule.ObjectType = 0x00000010;
- newRule.Application = "*";
- newRule.Path = object;
- newRule.PathType = 0;
- newRule.Account = account;
- newRule.assignment = dhtmlctrl.Assignment;
- newRule.RuleID = sdparser.RuleList.GenerateRuleID( newRule.ObjectType, true);
-
- var ad = adl.CreateAccessDescriptor();
- ad.AccessType = 0x0000001F;
-
- if (prevent)
- {
- // Prevent
-
- // USB and Firewire storage devices have omitted AT_DEVICE_WRITE access in order to avoid "Failed write" messages
- if ((sdparser.RuleList.Get(ids[i]).Path == "Disk\\Link\\*\\usbstor*" || sdparser.RuleList.Get(ids[i]).Path == "Disk\\Link\\*\\Sbp2*")
- && sdparser.RuleList.Get(ids[i]).Account == RA_SYSTEM)
- {
- var ad2 = adl.CreateAccessDescriptor();
- ad2.AccessType = AT_DEVICE_OPEN;
- ad2.AccessResult = 0x0000;
- ad2.AuditLevel = document.all["SelAuditLevel"].value == "monitor" ? 0x0001 : 0x0000;
- adl.Insert(ad2);
-
- var ad3 = adl.CreateAccessDescriptor();
- ad3.AccessType = AT_DEVICE_READ;
- ad3.AccessResult = 0x0000;
- ad3.AuditLevel = document.all["SelAuditLevel"].value == "monitor" ? 0x0001 : 0x0000;
- adl.Insert(ad3);
-
- ad.AccessType = AT_DEVICE_IOCTL;
-
- // ignore AT_DEVICE_WRITE
- }
-
- ad.AccessResult = 0x0000;
-
- if (document.all["SelAuditLevel"].value == "monitor")
- {
- // Monitor
- ad.AuditLevel = 0x0001;
- }
- else
- {
- // Ignore
- ad.AuditLevel = 0x0000;
- }
- }
- else
- {
- // Allow / Ignore
- ad.AccessResult = 0x0001;
- ad.AuditLevel = 0x0000;
- }
-
- adl.Insert(ad);
- sdparser.RuleList.Insert(newRule, newRule);
-
- return newRule.RuleIDString;
- }
-